home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / CHDIR.HLP < prev    next >
Text File  |  1987-04-05  |  1KB  |  47 lines

  1. -----------------------  CHDIR - Internal DOS Command  -------------------------
  2.  
  3. CHDIR changes the current directory or displays the current directory path.
  4.  
  5. FORMAT:   CHDIR [d:][path]
  6.  
  7. REMARKS:
  8.  
  9.    d:   - the drive letter.  If omitted the default drive is assumed.
  10.    path - the directory path of the directory to be made current.  If a path is
  11.           not specified, the current path will be displayed.
  12.  
  13.    DOS looks in the current directory to find files specified in a command if
  14.    the directory path is not specified in the command.
  15.  
  16.    CHDIR may be abbreviated as CD.
  17.  
  18. EXAMPLES:
  19.  
  20. Display the current directory path on the default drive:
  21.  
  22.           CHDIR       or       CD
  23.  
  24.  
  25. Change the current directory on the default drive to the root directory:
  26.  
  27.           CHDIR \     or       CD \
  28.  
  29.  
  30. Change the current directory on the B drive to the BUDGET directory.  BUDGET is
  31. a subdirectory of the root directory:
  32.  
  33.           CHDIR B:\BUDGET
  34.  
  35.  
  36. Change the current directory on the default drive to the DATA directory.  DATA
  37. is a subdirectory of the BUDGET directory.  BUDGET is a subdirectory of the root
  38. directory.
  39.  
  40.           CD \BUDGET\DATA
  41.  
  42.    If the current directory path is \BUDGET and you want to make DATA,
  43.    which is a subdirectory of BUDGET, the current directory, you need
  44.    specify only the DATA subdirectory:
  45.  
  46.           CD DATA
  47.